projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e5b2f25
)
Compilation for for systems with getaddrinfo_a
author
Lars Ingebrigtsen
<larsi@gnus.org>
Sat, 30 Jan 2016 03:43:10 +0000
(
04:43
+0100)
committer
Lars Ingebrigtsen
<larsi@gnus.org>
Sat, 30 Jan 2016 03:43:10 +0000
(
04:43
+0100)
* process.c (Fmake_network_process): Make stuff work again on
systems with getaddrinfo_a.
src/process.c
patch
|
blob
|
history
diff --git
a/src/process.c
b/src/process.c
index 06fb68587858b0928b5b53a82ed702b289209ece..7cf701cef2fbcefe8e3b517dd42328f69e75c636 100644
(file)
--- a/
src/process.c
+++ b/
src/process.c
@@
-3834,9
+3834,9
@@
usage: (make-network-process &rest ARGS) */)
{
connect_network_socket (proc, ip_addresses);
}
-#endif /* HAVE_GETADDRINFO_A */
-
+#else /* HAVE_GETADDRINFO_A */
connect_network_socket (proc, ip_addresses);
+#endif
return proc;
}